body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}
header {
  width: 100%;
  background-color: #ffffff;
  display: flex;
  position: fixed;
  justify-content: space-between;
  margin-top: 0px;
  z-index: 11;
}
.index_link {
  text-decoration: none;
  color: #2c2c2c;
}
.logo {
  font-size: 30px;
  background-color: #ffffff;
  font-family: "Notable", sans-serif;
  font-weight: bolder;
  margin-left: 100px;
  margin-top: 15px;
  z-index: 4;
  letter-spacing: 2px;
}
nav ul {
  background-color: #ffffff;
  list-style: none;
  display: flex;
  z-index: 4;
  margin-right: 60px;
}
nav ul li {
  background-color: #ffffff;
  padding: 10px;
  z-index: 4;
}
nav ul li a {
  text-decoration: none;
  color: #2c2c2c;
  font-family: "Gruppo", cursive;
  font-size: 18px;
  font-weight: 800;
  background-color: #ffffff;
  z-index: 4;
}
.content {
  position: absolute;
  background-color: #ffffff;
  top: 100%;
  height: auto;
}
.video {
  position: fixed;
  top: 10%;
  bottom: 0;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  background-color: #000000;
}
.hash_links {
  text-decoration: none;
  color: #2c2c2c;
  font-weight: 900;
}
.hash_links:hover {
  color: #2c2c2c;
  font-weight: 900;
}
.topic {
  width: 10%;
  position: relative;
  color: #2c2c2c;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  left: 10%;
}
.author {
  margin-left: 150px;
  font-weight: bolder;
  font-size: 12px;
}
.poem {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  left: 10%;
}
.para {
  position: relative;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-weight: 20px;
  width: 80%;
  letter-spacing: 0.5px;
  padding-bottom: 15px;
  left: 10%;
}
[data-scroll] {
  transition: all 1s;
}

[data-scroll="in"] {
  opacity: 1;
}
[data-scroll="out"] {
  opacity: 0;
}
